home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
system
/
MUI
/
Developer
/
Autodocs
/
MUI_Rectangle.doc
< prev
next >
Wrap
Text File
|
2000-01-01
|
2KB
|
62 lines
TABLE OF CONTENTS
Rectangle.mui/Rectangle.mui
Rectangle.mui/MUIA_Rectangle_BarTitle
Rectangle.mui/MUIA_Rectangle_HBar
Rectangle.mui/MUIA_Rectangle_VBar
Rectangle.mui/Rectangle.mui
Rectangle class seems kind of useless since it
doesn't define any attributes or methods itself.
However, objects of this type are frequently
used in every application. They allow insertion
of space to control MUI's layout process.
Rectangle.mui/MUIA_Rectangle_BarTitle
NAME
MUIA_Rectangle_BarTitle -- (V11) [I.G], STRPTR
FUNCTION
This attribute describes a text string which will be displayed
in group title style centered in the rectangle. Really only
makes sense for MUIA_Rectangle_HBar type objects.
SEE ALSO
MUIA_Rectangle_HBar
Rectangle.mui/MUIA_Rectangle_HBar
NAME
MUIA_Rectangle_HBar -- (V7 ) [I.G], BOOL
FUNCTION
When set to TRUE, MUI draws a horizontal bar in the middle of the
rectangle. Such bars can be used instead of group frames to
seperate objects in a window.
EXAMPLE
/* draw a two pixel high bar in the middle
of an 8 pixel high rectangle */
RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixHeight, 8, End;
SEE ALSO
MUIA_Rectangle_VBar
Rectangle.mui/MUIA_Rectangle_VBar
NAME
MUIA_Rectangle_VBar -- (V7 ) [I.G], BOOL
FUNCTION
When set to TRUE, MUI draws a vertical bar in the middle of the
rectangle. Such bars can be used instead of group frames to
seperate objects in a window.
EXAMPLE
/* draw a two pixel wide bar in the middle
of an 8 pixel wide rectangle */
RectangleObject, MUIA_Rectangle_HBar, TRUE, MUIA_FixWidth, 8, End;
SEE ALSO
MUIA_Rectangle_HBar